This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: RichText field in new doc does not keep value... ~Umberto Nongeroson 26.Nov.03 06:03 PM a Web browser Domino Designer 6.0.2Windows 2000
you want to do something like this...
if UIDoc.EditMode then
Call UIdoc.refresh
Call UIDoc.Save()
else
curdoc.save
end if
strDocID = curDoc.NoteID
Call uidoc.Close
If Not CurDoc Is Nothing Then Delete curDoc
If Not UIDoc Is Nothing Then Delete uidoc
If Not ws Is Nothing Then Delete ws
Set curDoc = db.GetDocumentByID( strDocID )
Set WS = New NotesUIWorkspace
Call WS.EditDocument(True,curDoc)